home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / list / List_ListInsert.c < prev    next >
C/C++ Source or Header  |  1990-11-27  |  2KB  |  64 lines

  1. /* 
  2.  * List_ListInsert.c --
  3.  *
  4.  *    Source code for the List_ListInsert library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/list/RCS/List_ListInsert.c,v 1.2 90/11/27 11:06:35 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <stdio.h>
  21. #include "list.h"
  22.  
  23. extern void panic();
  24.  
  25. /*
  26.  * ----------------------------------------------------------------------------
  27.  *
  28.  * List_ListInsert --
  29.  *
  30.  *    Insert the list pointed to by headerPtr into a List after 
  31.  *    destPtr.
  32.  *
  33.  * Results:
  34.  *    None.
  35.  *
  36.  * Side effects:
  37.  *    The list containing destPtr is modified to contain itemPtr.
  38.  *    headerPtr no longer references a valid list.
  39.  *
  40.  * ----------------------------------------------------------------------------
  41.  */
  42. void
  43. List_ListInsert(headerPtr, destPtr)
  44.     register    List_Links *headerPtr;    /* structure to insert */
  45.     register    List_Links *destPtr;    /* structure after which to insert it */
  46. {
  47.     if (headerPtr == (List_Links *) NIL || destPtr == (List_Links *) NIL
  48.         || !headerPtr || !destPtr) {
  49.     panic("List_ListInsert: headerPtr (%x) or destPtr (%x) is NIL.\n",
  50.           (unsigned int) headerPtr, (unsigned int) destPtr);
  51.     return;
  52.     }
  53.  
  54.     if (headerPtr->nextPtr != headerPtr) {
  55.     headerPtr->prevPtr->nextPtr = destPtr->nextPtr;
  56.     headerPtr->nextPtr->prevPtr = destPtr;
  57.     destPtr->nextPtr->prevPtr = headerPtr->prevPtr;
  58.     destPtr->nextPtr = headerPtr->nextPtr;
  59.     }
  60.  
  61.     headerPtr->nextPtr = (List_Links *) NIL;
  62.     headerPtr->prevPtr = (List_Links *) NIL;
  63. }
  64.